home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / clusgame.dxr / 00006.ls < prev    next >
Encoding:
Text File  |  1996-03-21  |  315 b   |  18 lines

  1. on startMovie
  2.   set the keyDownScript to "setKey"
  3. end
  4.  
  5. on stopMovie
  6.   set the keyDownScript to EMPTY
  7. end
  8.  
  9. on setKey
  10.   global actdir, tempdir
  11.   if (the keyCode >= 123) and (the keyCode <= 126) then
  12.     if the keyCode <> actdir then
  13.       set tempdir to actdir
  14.       set actdir to the keyCode
  15.     end if
  16.   end if
  17. end
  18.